home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / SNNSV32.ZIP / SNNSv3.2 / kernel / sources / art_typ.h next >
C/C++ Source or Header  |  1994-04-25  |  2KB  |  51 lines

  1. /*****************************************************************************
  2.   FILE           : art_typ.h
  3.   SHORTNAME      : 
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : SNNS-Kernel: Global Datatypes and Constants for ART Networks
  7.   NOTES          : For User's Application Programs, User-Interface and Kernel
  8.  
  9.   AUTHOR         : Niels Mache
  10.   DATE           : 17.05.92
  11.  
  12.   CHANGED BY     : Sven Doering
  13.   IDENTIFICATION : @(#)art_typ.h    1.7 3/15/94
  14.   SCCS VERSION   : 1.7
  15.   LAST CHANGE    : 3/15/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.  
  19. ******************************************************************************/
  20. #ifndef ART_GLOBAL_TYPES
  21.  
  22. #define ART_GLOBAL_TYPES
  23.  
  24.  
  25.  
  26. /* define the possible values for the status of an ART-network
  27. */
  28. #define ART_NO_CLASSIFICATION 0  /* The network hasn't reched a stable state
  29.                                     yet
  30.                                  */
  31. #define ART_CLASSIFIED        1  /* The network has found a class for the
  32.                                     actual input pattern
  33.                                  */
  34. #define ART_NOT_CLASSIFIABLE  2  /* The network was not able to find a
  35.                                     class for the actual input pattern
  36.                                  */
  37. #define ART_DONT_KNOW         3  /* The ARTMAP network does not find an
  38.                                     appropriate class -> all map units
  39.                                     are turned on.
  40.                                  */
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47. /* types */
  48. typedef   int                    art_cl_status;
  49.  
  50. #endif
  51.